博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单实现的Servlet文件上传,并显示
阅读量:6436 次
发布时间:2019-06-23

本文共 3931 字,大约阅读时间需要 13 分钟。

hot3.png

大部分情况,会从HttpServletResponse取得PrintWriter实例,使用println()对浏览器进行字符输出。然而有时候,需要直接对浏览器进行字节输出,这时可以使用HttpServletResponse的getOutputStream()方法取得ServletOutputStream实例,它是OutputStream的子类。

如图,我们希望让浏览器直接输入PDF文件。

import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/** *  输出二进制字符 * @author Barudisshu */@WebServlet(name = "Download", urlPatterns = {"/download.do"})public class Download extends HttpServlet {    protected void processRequest(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {        String password = request.getParameter("password");        if ("123456".equals(password)) {            //设置MIME(Multipurpose Internet Mail Extensions)类型            response.setContentType("application/pdf");            //获取输入流对象            InputStream in = getServletContext().getResourceAsStream("/WEB-INF/jdbc.pdf");            //获取输出流对象            OutputStream out = response.getOutputStream();            //读取PDF并输出至浏览器            writeBytes(in, out);        }    }    private void writeBytes(InputStream in, OutputStream out)            throws IOException {        byte[] buffer = new byte[1024];        int length = -1;        while ((length = in.read(buffer)) != -1) {            out.write(buffer, 0, length);        }        in.close();        out.close();    }}

上传文件,并显示在客户端。

代码清单1:upload.xhtml (上传表单)

            上传文件                        

代码清单2:UploadServlet.java (获取请求,并输入到服务器目录)

/** * Function 负责文件的上传,并返回结果 * @author Barudisshu */@MultipartConfig@WebServlet(name = "UploadServlet", urlPatterns = {"/upload.do"})public class UploadServlet extends HttpServlet {    private String contextPath;    @Override    public void init() throws ServletException {        contextPath = getServletContext().getRealPath("/");    }    protected void processRequest(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {        request.setCharacterEncoding("utf-8");        Part part = request.getPart("picture");        String fileName = getFileName(part);        writeTo(fileName, part);        //forward到显示        request.setAttribute("fileName", fileName);        request.getRequestDispatcher("show.jsp").forward(request, response);    }    //取得上传文件名    private String getFileName(Part part) {        String header = part.getHeader("Content-Disposition");        String fileName = header.substring(header.indexOf("filename=\"") + 10,                header.lastIndexOf("\""));        return fileName;    }    //存储文件    private void writeTo(String fileName, Part part) throws IOException, FileNotFoundException {        InputStream in = part.getInputStream();        OutputStream out = new FileOutputStream(contextPath + fileName);        byte[] buffer = new byte[1024];        int length = -1;        while ((length = in.read(buffer)) != -1) {            out.write(buffer, 0, length);        }        in.close();        out.close();    }}

这里有很多限制,这使用的是Servlet 3.0 新的特征标注(Annotaion)类描述部署,一些低版本的服务器需要使用标准依赖部署描述文件(web.xml)来部署,另外Part也是Java EE 6.0新增的类,Part是一个接口继承于javax.servlet.http,代表一部分表单项目接收来自multipart/form-data的POST的请求。

 

代码清单3:show.jsp (显示类)

<%@page contentType="text/html" pageEncoding="UTF-8"%>            
JSP Page

图片显示

${fileName}

这里使用EL表达式描述,优化了代码。

下面给出效果链接……

转载于:https://my.oschina.net/Barudisshu/blog/157481

你可能感兴趣的文章
SQL语句字符串处理大全
查看>>
backtrack5局域网通信软件——信使
查看>>
安装Apache2.4.23
查看>>
设计模式(创建型)之原型模式
查看>>
android launcher 相关
查看>>
This Android SDK requires An... ADT to the late...
查看>>
报错:failed to get the task for process XXX(解决方案)
查看>>
使用自定义铃声
查看>>
spring mvc+junit
查看>>
关于一个Panel上鼠标不及时响应MouseLeave事件
查看>>
ajax全局设定
查看>>
js,jquery字符串转换json,兼容各种浏览器
查看>>
数据结构算法实现2
查看>>
环境变量的作用,为什么要设置环境变量?
查看>>
从尾到头打印单链表
查看>>
getopt
查看>>
我的第一个IT产品:PublicLecture@HK【My First IT Product】
查看>>
优秀员工与普通员工
查看>>
CCNP学习笔记15-RSTP
查看>>
DELL服务器iDRAC相关设置
查看>>